CSSStyleSheetHeader

data class CSSStyleSheetHeader(styleSheetId: StyleSheetId, frameId: FrameId, sourceURL: String, sourceMapURL: String?, origin: StyleSheetOrigin, title: String, ownerNode: BackendNodeId?, disabled: Boolean, hasSourceURL: Boolean?, isInline: Boolean, isMutable: Boolean, isConstructed: Boolean, startLine: Double, startColumn: Double, length: Double, endLine: Double, endColumn: Double)

CSS stylesheet metainformation.

Constructors

CSSStyleSheetHeader
Link copied to clipboard
fun CSSStyleSheetHeader(styleSheetId: StyleSheetId, frameId: FrameId, sourceURL: String, sourceMapURL: String? = null, origin: StyleSheetOrigin, title: String, ownerNode: BackendNodeId? = null, disabled: Boolean, hasSourceURL: Boolean? = null, isInline: Boolean, isMutable: Boolean, isConstructed: Boolean, startLine: Double, startColumn: Double, length: Double, endLine: Double, endColumn: Double)

Properties

disabled
Link copied to clipboard
val disabled: Boolean
Denotes whether the stylesheet is disabled.
endColumn
Link copied to clipboard
val endColumn: Double
Column offset of the end of the stylesheet within the resource (zero based).
endLine
Link copied to clipboard
val endLine: Double
Line offset of the end of the stylesheet within the resource (zero based).
frameId
Link copied to clipboard
val frameId: FrameId
Owner frame identifier.
hasSourceURL
Link copied to clipboard
val hasSourceURL: Boolean? = null
Whether the sourceURL field value comes from the sourceURL comment.
isConstructed
Link copied to clipboard
val isConstructed: Boolean
Whether this stylesheet is a constructed stylesheet (created using new CSSStyleSheet()).
isInline
Link copied to clipboard
val isInline: Boolean
Whether this stylesheet is created for STYLE tag by parser.
isMutable
Link copied to clipboard
val isMutable: Boolean
Whether this stylesheet is mutable.
length
Link copied to clipboard
val length: Double
Size of the content (in characters).
origin
Link copied to clipboard
val origin: StyleSheetOrigin
Stylesheet origin.
ownerNode
Link copied to clipboard
val ownerNode: BackendNodeId? = null
The backend id for the owner node of the stylesheet.
sourceMapURL
Link copied to clipboard
val sourceMapURL: String? = null
URL of source map associated with the stylesheet (if any).
sourceURL
Link copied to clipboard
val sourceURL: String
Stylesheet resource URL.
startColumn
Link copied to clipboard
val startColumn: Double
Column offset of the stylesheet within the resource (zero based).
startLine
Link copied to clipboard
val startLine: Double
Line offset of the stylesheet within the resource (zero based).
styleSheetId
Link copied to clipboard
val styleSheetId: StyleSheetId
The stylesheet identifier.
title
Link copied to clipboard
val title: String
Stylesheet title.

Sources

jvm source
Link copied to clipboard